home *** CD-ROM | disk | FTP | other *** search
/ Boot Disc 13 / boot-disc-1997-09.iso / HyprWire / DATA.Z / 02 FanoutSequencer.mdf < prev    next >
Text File  |  1996-11-18  |  2KB  |  75 lines

  1. kxKinetix
  2. kxType = kxSmalltalkJavaPlugIn
  3.  
  4. kxModuleDefinition SequentialFanOut = 
  5.   {
  6.   kxPublicName = "Fan-out Sequencer"
  7.   kxVersion = "1.0"
  8.   kxCreationTime = "02/18/96  12:26:14 PM"
  9.   kxAuthor = "Kinetix"
  10.   kxLargeIcon = kxBmResType "ModIcons.dll" "FANO02" 0xFF00FF
  11.   kxSmallIcon = kxBmResType "ModIcons.dll" "FANO01" 0xFF00FF
  12.   kxSmalltalkProxyClass = SequentialFanOutBundle
  13.   kxShortDescription = "Fires a specified set of outputs in sequence."
  14.   kxHelpName = "FANOUT_SEQUENCER_PROPERTIES"
  15. //  kxHelpDoc = "http://www.hyperwire.com/helpdocs/Sequencers/SequentialFanOut/help.html"
  16.  
  17.     // The Java class which implements the plug-in...
  18.   kxPlugInClass = SequentialFanOutPlugIn
  19.  
  20.     // The Smalltalk editor classes used to edit the properties of this plug-in...
  21.   kxPropertyEditors =  SequencerEditor OpusLabelCommentEditor ModuleStateEditor
  22.  
  23.  
  24.   kxInputPorts =
  25.     {
  26.     kxInclude "Basic.ipt"
  27.     kxPort RunBackward =
  28.       {
  29.       kxJavaMethod = wiFireDown
  30.       kxJavaSignature = "()Z"
  31.       kxPublicNames = "Run Backward" "Is Sequence Valid"
  32.       }
  33.  
  34.     kxPort Run =
  35.       {
  36.       kxJavaMethod = wiFire
  37.       kxJavaSignature = "()Z"
  38.       kxPublicNames = "Run" "Is Sequence Valid"
  39.       }
  40.  
  41.     }
  42.  
  43.  
  44.   kxInputPortsMenu =
  45.     {
  46.     Reset
  47.       kxSeparator
  48.     Run
  49.     RunBackward
  50.     //kxMenu "More" =
  51.       //{
  52.       kxInclude "Basic.imn"
  53.       //}
  54.     }
  55.  
  56.  
  57.   kxOutputPorts =
  58.     {
  59.     kxPort Selectn =
  60.       {
  61.       kxJavaSignature = "(LHwObject;)V"
  62.       kxPublicNames = "Select (n)" "select index" "Not Specified"
  63.       }
  64.  
  65.     }
  66.  
  67.  
  68.   kxOutputPortsMenu =
  69.     {
  70.     Selectn
  71.     }
  72.  
  73.  
  74.   }
  75.